chore(deps): update all non-major dependencies #115
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
22.18.6->22.18.123.5.21->3.5.223.5.21->3.5.223.5.21->3.5.2210.2.3->10.3.10.25.10->0.25.115.64.0->5.66.216.2.0->16.2.610.17.1->10.19.05.9.2->5.9.33.0.8->3.1.1Release Notes
vuejs/core (@vue/compiler-core)
v3.5.22Compare Source
Bug Fixes
@vue-ignorein runtime type resolution (#13906) (ba7f7f9)PatchFlags.BAILfor slot when props are present (#13907) (5358bca), closes #13904hhelper (#13841) (75220c7)forceReflowon the correct document (fix #13849) (#13853) (1be5ddf)neverinstead of{}(#13915) (8620a61), closes #11564Features
shadowRootin custom elements (#12965) (47e628d), closes #12964Reverts
antfu-collective/bumpp (bumpp)
v10.3.1Compare Source
No significant changes
View changes on GitHub
v10.3.0Compare Source
🚀 Features
--releasefor release type - by @luoling8192 in #97 (5af7b)View changes on GitHub
evanw/esbuild (esbuild)
v0.25.11Compare Source
Add support for
with { type: 'bytes' }imports (#4292)The import bytes proposal has reached stage 2.7 in the TC39 process, which means that although it isn't quite recommended for implementation, it's generally approved and ready for validation. Furthermore it has already been implemented by Deno and Webpack. So with this release, esbuild will also add support for this. It behaves exactly the same as esbuild's existing
binaryloader. Here's an example:Lower CSS media query range syntax (#3748, #4293)
With this release, esbuild will now transform CSS media query range syntax into equivalent syntax using
min-/max-prefixes for older browsers. For example, the following CSS:will be transformed like this with a target such as
--target=chrome100(or more specifically with--supported:media-range=falseif desired):webpro-nl/knip (knip)
v5.66.2Compare Source
v5.66.1Compare Source
20690d1)SymbolTypeand reuseSYMBOL_TYPE(resolves #1306) (d7c1c83)3143c4e)defineNuxtConfigwritable and deletable (resolves #1307) (c31a77f)c761a9d)fb3ff4e)661440e)9b96730)7776ae8)v5.66.0Compare Source
ignoreFilesfeat (87ca476)ed2acec) - thanks @hoardinghopes!d9e969d) - thanks @what1s1ove!673893a) - thanks @rfalke-rtl!83ca88f)cb926ca)ignoreIssuesto JSON Schema (9005691)b4b8929)b153f93)0ccfda6)v5.65.0Compare Source
157ae94)f7ce7d7)715d7cc) - thanks @jdufresne!8b91d08)4a3025d)fac5613)ignoreFilesconfig option (c9ab3c9)bfe7a0e)b39832d)strip-json-commentsa tad (7172653)9b3981b)2d261f5)v5.64.3Compare Source
5dd115f) - thanks @rfalke-rtl!83b02bb) - thanks @rfalke-rtl!cf0556e)3db7eb7)0531075)c6845c7)v5.64.2Compare Source
toC12configforbumpplugin (#1280) (dbdd98b) - thanks @nyarthan!packageManagerfield for corepack users (#1281) (7c70d9f) - thanks @nyarthan!7abdc69)d7e7866)665f38a)461edb4)4c72030)7ee634a)e687287)edb7367)b6ac28c) - thanks @nyarthan!3efb8a3) - thanks @dnicolson!dde7a80) - thanks @hugotiger!v5.64.1Compare Source
634b59d)d3433f0)570f40b)f4f9166)f18428c)7ae5d72)3174456)2da7ba4)a71c103)lint-staged/lint-staged (lint-staged)
v16.2.6Compare Source
Patch Changes
33d4502Thanks @Adrian-Baran-GY! - Fix problems with--continue-on-erroroption, where tasks might have still been killed (SIGINT) when one of them failed.v16.2.5Compare Source
Patch Changes
9e02d9dThanks @iiroj! - Fix unhandled promise rejection when spawning tasks (instead of the tasks themselves failing). Previously when a task failed to spawn, lint-staged also failed and the backup stash might not have been automatically restored.v16.2.4Compare Source
Patch Changes
#1682
0176038Thanks @iiroj! - Update dependencies, includingnano-spawn@2.0.0with bug fixes.#1671
581a54eThanks @iiroj! - Speed up execution by only importing theyamldepedency if using YAML configuration files.v16.2.3Compare Source
Patch Changes
27cd541Thanks @iiroj! - When using--fail-on-changes, automatically hidden (partially) unstaged changes are no longer counted to make lint-staged fail.v16.2.2Compare Source
Patch Changes
#1667
699f95dThanks @iiroj! - The backup stash will not be dropped when using--fail-on-changesand there are errors. When reverting to original state is disabled (via--no-revertor--fail-on-changes), hidden (partially) unstaged changes are still restored automatically so that it's easier to resolve the situation manually.Additionally, the example for using the backup stash manually now uses the correct backup hash, if available:
v16.2.1Compare Source
Patch Changes
#1664
8277b3bThanks @iiroj! - The built-in TypeScript types have been updated to more closely match the implementation. Notably, the list of staged files supplied to task functions isreadonly string[]and can't be mutated. Thanks @outslept!export default { --- "*": (files: string[]) => void console.log('staged files', files) +++ "*": (files: readonly string[]) => void console.log('staged files', files) }#1654
70b9af3Thanks @iiroj! - This version has been published from GitHub Actions using Trusted Publishing for npm packages.#1659
4996817Thanks @iiroj! - Fix searching configuration files when the working directory is a subdirectory of a git repository, and there arepackage.jsonfiles in the working directory. This situation might happen when running lint-staged for a single package in a monorepo.#1654
7021f0aThanks @iiroj! - Return the caret semver range (^) to direct dependencies so that future patch and minor versions are allowed. This enables projects to better maintain and deduplicate their own transitive dependencies while not requiring direct updates to lint-staged. This was changed in 16.2.0 after the vulnerability issues withchalkanddebug, which were also removed in the same version.Given the recent vulnerabilities in the npm ecosystem, it's best to be very careful when updating dependencies.
pnpm/pnpm (pnpm)
v10.19.0Compare Source
Minor Changes
You can now allow specific versions of dependencies to run postinstall scripts.
onlyBuiltDependenciesnow accepts package names with lists of trusted versions. For example:Related PR: #10104.
Added support for exact versions in
minimumReleaseAgeExclude#9985.You can now list one or more specific versions that pnpm should allow to install, even if those versions don’t satisfy the maturity requirement set by
minimumReleaseAge. For example:v10.18.3Compare Source
Patch Changes
verifyDepsBeforeInstall: installand pre/post install scripts that called other pnpm scripts #10060.@scope:registry) being parsed as property paths inpnpm config getwhen--location=projectis used #9362.pnpm config set --location=projectincorrectly handling keys with slashes (auth tokens, registry settings) #9884.pnpm-workspace.yamland.npmrcexist,pnpm config set --location=projectnow writes topnpm-workspace.yaml(matching read priority) #10072.pnpm outdated --long#10040.v10.18.2Compare Source
Patch Changes
pnpm outdated --longshould work #10040.pnpm dlxshould request the full metadata of packages, whenminimumReleaseAgeis set #9963.EPIPEerrors when piping output to other commands #10027.v10.18.1Compare Source
Patch Changes
--lockfile-onlyis used #8320.pnpm setupcreates a command shim to the pnpm executable. This is needed to be able to runpnpm self-updateon Windows #5700.pnpm install, pnpm produced false positive warnings for "skip adding to the default catalog because it already exists". This warning now only prints when usingpnpm add --save-catalogas originally intended.v10.18.0Compare Source
Minor Changes
Added network performance monitoring to pnpm by implementing warnings for slow network requests, including both metadata fetches and tarball downloads.
Added configuration options for warning thresholds:
fetchWarnTimeoutMsandfetchMinSpeedKiBps.Warning messages are displayed when requests exceed time thresholds or fall below speed minimums
Related PR: #10025.
Patch Changes
minimumReleaseAgeconfiguration #10030.cleanupUnusedCatalogsconfiguration when removing dependent packages.scriptShellis set tofalse#8748.pnpm dlxshould not fail whenminimumReleaseAgeis set #10037.microsoft/TypeScript (typescript)
v5.9.3: TypeScript 5.9.3Compare Source
Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.
For release notes, check out the release announcement
Downloads are available on:
vuejs/language-tools (vue-tsc)
v3.1.1Compare Source
Features
--tsdkcommand line arg (#5691)Bug Fixes
RefbyRefSymbolproperty (#5687) - Thanks to @KazariEX!__vue__in project instead of program (#5690)$scopedSlotssupport for Vue 2__VLS_export(#5696) - Thanks to @KazariEX!Other Changes
writeGlobalTypeswithout side effectsv3.1.0Compare Source
Performance
Other Changes
v3.0.9Compare Source
Features
--tsdkcommand line arg (#5691)Configuration
📅 Schedule: Branch creation - "on Monday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.